home *** CD-ROM | disk | FTP | other *** search
/ NeXT Enterprise Objects Framework 1.1 / NeXT Enterprise Objects Framework 1.1.iso / NextDeveloper / Examples / EnterpriseObjects / SHLExamples / Querying / EOQualifierContentsCategory.m < prev    next >
Encoding:
Text File  |  1994-08-01  |  720 b   |  30 lines

  1. /*--------------------------------------------------------------------------
  2.  *
  3.  *     You may freely copy, distribute, and reuse the code in this example.
  4.  *     SHL Systemhouse disclaims any warranty of any kind, expressed or  
  5.  *    implied, as to its fitness for any particular use.
  6.  *
  7.  *
  8.  *    Contents
  9.  *
  10.  *    Category Of:        EOQualifier
  11.  *
  12.  *    Declared In:        EOQualifierContentsCategory.h
  13.  *
  14.  *
  15.  *------------------------------------------------------------------------*/
  16. #import "EOQualifierContentsCategory.h"
  17. #import <eoaccess/EOExpressionArray.h>
  18. #import <eoaccess/eoaccess.h>
  19.  
  20.  
  21.  
  22. @implementation EOQualifier  (Contents)
  23.  
  24. - (NSString *) contents
  25. {
  26.     return [(EOExpressionArray *)_contents expressionValueForContext:nil];
  27. }
  28.  
  29. @end
  30.